In this notebook, we're going to define and train a CycleGAN to read in an image from a set $X$ and transform it so that it looks as if it belongs in set $Y$. Specifically, we'll look at a set of images of Yosemite national park taken either during the summer of winter. The seasons are our two domains!
The objective will be to train generators that learn to transform an image from domain $X$ into an image that looks like it came from domain $Y$ (and vice versa).
Some examples of image data in both sets are pictured below.

These images do not come with labels, but CycleGANs give us a way to learn the mapping between one image domain and another using an unsupervised approach. A CycleGAN is designed for image-to-image translation and it learns from unpaired training data. This means that in order to train a generator to translate images from domain $X$ to domain $Y$, we do not have to have exact correspondences between individual images in those domains. For example, in the paper that introduced CycleGANs, the authors are able to translate between images of horses and zebras, even though there are no images of a zebra in exactly the same position as a horse or with exactly the same background, etc. Thus, CycleGANs enable learning a mapping from one domain $X$ to another domain $Y$ without having to find perfectly-matched, training pairs!

A CycleGAN is made of two types of networks: discriminators, and generators. In this example, the discriminators are responsible for classifying images as real or fake (for both $X$ and $Y$ kinds of images). The generators are responsible for generating convincing, fake images for both kinds of images.
This notebook will detail the steps you should take to define and train such a CycleGAN.
- You'll load in the image data using PyTorch's DataLoader class to efficiently read in images from a specified directory.
- Then, you'll be tasked with defining the CycleGAN architecture according to provided specifications. You'll define the discriminator and the generator models.
- You'll complete the training cycle by calculating the adversarial and cycle consistency losses for the generator and discriminator network and completing a number of training epochs. It's suggested that you enable GPU usage for training.
- Finally, you'll evaluate your model by looking at the loss over time and looking at sample, generated images.
We'll first load in and visualize the training data, importing the necessary libraries to do so.
If you are working locally, you'll need to download the data as a zip file by clicking here.
It may be named summer2winter-yosemite/ with a dash or an underscore, so take note, extract the data to your home directory and make sure the below image_dir matches. Then you can proceed with the following loading code.
# loading in and transforming data
import os
import torch
from torch.utils.data import DataLoader
import torchvision
import torchvision.datasets as datasets
import torchvision.transforms as transforms
# visualizing data
import matplotlib.pyplot as plt
import numpy as np
import warnings
%matplotlib inline
The get_data_loader function returns training and test DataLoaders that can load data efficiently and in specified batches. The function has the following parameters:
image_type: summer or winter, the names of the directories where the X and Y images are storedimage_dir: name of the main image directory, which holds all training and test imagesimage_size: resized, square image dimension (all images will be resized to this dim)batch_size: number of images in one batch of dataThe test data is strictly for feeding to our generators, later on, so we can visualize some generated samples on fixed, test data.
You can see that this function is also responsible for making sure our images are of the right, square size (128x128x3) and converted into Tensor image types.
It's suggested that you use the default values of these parameters.
Note: If you are trying this code on a different set of data, you may get better results with larger image_size and batch_size parameters. If you change the batch_size, make sure that you create complete batches in the training loop otherwise you may get an error when trying to save sample data.
def get_data_loader(image_type, image_dir='../input/cyclegan/summer2winter_yosemite',
image_size=256, batch_size=16, num_workers=0):
"""Returns training and test data loaders for a given image type, either 'summer' or 'winter'.
These images will be resized to 256x256x3, by default, converted into Tensors, and normalized.
"""
# resize and normalize the images
transform = transforms.Compose([transforms.Resize(image_size), # resize to 128x128
transforms.ToTensor()])
# get training and test directories
image_path = './' + image_dir
train_path = os.path.join(image_path, image_type)
test_path = os.path.join(image_path, 'test_{}'.format(image_type))
# define datasets using ImageFolder
train_dataset = datasets.ImageFolder(train_path, transform)
test_dataset = datasets.ImageFolder(test_path, transform)
# create and return DataLoaders
train_loader = DataLoader(dataset=train_dataset, batch_size=batch_size,
shuffle=True, num_workers=num_workers)
test_loader = DataLoader(dataset=test_dataset, batch_size=batch_size,
shuffle=False, num_workers=num_workers)
return train_loader, test_loader
# create train and test dataloaders for images from the two domains X and Y
# image_type = directory names for our data
dataloader_X, test_dataloader_X = get_data_loader(image_type='summer')
dataloader_Y, test_dataloader_Y = get_data_loader(image_type='winter')
Below we provide a function imshow that reshape some given images and converts them to NumPy images so that they can be displayed by plt. This cell should display a grid that contains a batch of image data from set $X$.
# helper imshow function
def imshow(img):
npimg = img.numpy()
plt.imshow(np.transpose(npimg, (1, 2, 0)))
# get some images from X
dataiter = iter(dataloader_X)
# the "_" is a placeholder for no labels
images, _ = dataiter.next()
# show images
fig = plt.figure(figsize=(12, 8))
imshow(torchvision.utils.make_grid(images))
Next, let's visualize a batch of images from set $Y$.
# get some images from Y
dataiter = iter(dataloader_Y)
images, _ = dataiter.next()
# show images
fig = plt.figure(figsize=(12,8))
imshow(torchvision.utils.make_grid(images))
We need to do a bit of pre-processing; we know that the output of our tanh activated generator will contain pixel values in a range from -1 to 1, and so, we need to rescale our training images to a range of -1 to 1. (Right now, they are in a range from 0-1.)
# current range
img = images[0]
print('Min: ', img.min())
print('Max: ', img.max())
# helper scale function
def scale(x, feature_range=(-1, 1)):
"""Scale takes in an image x and returns that image,
scaled with a feature_range of pixel values from -1 to 1.
This function assumes that the input x is already scaled from 0-1.
"""
# scale from 0-1 to feature_range
min, max = feature_range
return x * (max - min) + min
# scaled range
scaled_img = scale(img)
print('Scaled min: ', scaled_img.min())
print('Scaled max: ', scaled_img.max())
A CycleGAN is made of two discriminator and two generator networks.
The discriminators, $D_X$ and $D_Y$, in this CycleGAN are convolutional neural networks that see an image and attempt to classify it as real or fake. In this case, real is indicated by an output close to 1 and fake as close to 0. The discriminators have the following architecture:

This network sees a 128x128x3 image, and passes it through 5 convolutional layers that downsample the image by a factor of 2. The first four convolutional layers have a BatchNorm and ReLu activation function applied to their output, and the last acts as a classification layer that outputs a prediction map with depth of one. Contrary to what the figure above indicates, the final output is not required to have a width and depth of one. In the original paper, the authors passed a 4x4 kernel with stride of 1 in the final convolutional layer. You should replicate that strategy.
To define the discriminators, you're expected to use the provided conv function, which creates a convolutional layer + an optional batch norm layer.
import torch.nn as nn
class Identity(nn.Module):
def forward(self, x):
return x
import functools
def get_norm_layer(norm_type='batch'):
"""Returns a normalization layer.
Parameters:
norm_type (str) -- name of normalization layer: batch | instance | none
For BatchNorm, use learnable affine parameters and track running statistics (mean/stddev).
For InstanceNorm, do not use learnable affine parameters and do not track running statistics.
"""
if norm_type == 'batch':
norm_layer = functools.partial(nn.BatchNorm2d, affine=True, track_running_stats=True)
elif norm_type == 'instance':
norm_layer = functools.partial(nn.InstanceNorm2d, affine=False, track_running_stats=False)
elif norm_type == 'none':
def norm_layer(x): return Identity()
else:
raise NotImplementedError('normalization layer [%s] is not found' % norm_type)
return norm_layer
# helper conv function
def conv(input_nc, output_nc, kernel_size, norm_layer, bias, stride=2, padding=1):
"""Creates a convolutional layer, with an optional normalization layer.
"""
layers = [nn.Conv2d(input_nc, output_nc, kernel_size, stride, padding, bias=bias)]
if norm_layer != None:
layers += [norm_layer(out_channels)]
return nn.Sequential(*layers)
Your task is to fill in the __init__ function with the specified 5 layer conv net architecture. Both $D_X$ and $D_Y$ have the same architecture, so we only need to define one class, and later instantiate two discriminators.
It's recommended that you use a kernel size of 4x4 and use that to determine the correct stride and padding size for each layer. This Stanford resource may also help in determining stride and padding sizes.
__init__The forward function defines how an input image moves through the discriminator, and the most important thing is to pass it through your convolutional layers in order, with a ReLu activation function applied to all but the last layer.
You should not apply a sigmoid activation function to the output, here, and that is because we are planning on using a squared error loss for training. And you can read more about this loss function, later in the notebook.
class Discriminator(nn.Module):
"""Defines a PatchGAN discriminator.
"""
def __init__(self, in_channels, n_filters=64, n_layers=3, norm_layer=get_norm_layer('batch')):
"""Constructs a PatchGAN discriminator.
Parameters:
in_channels (int) -- number of channels in input images
n_filters (int) -- number of filters in the last conv layer
n_layers (int) -- number of conv layers in discriminator
norm_layer -- normalization layer
"""
super(Discriminator, self).__init__()
# define all convolutional layers
# should accept an RGB image as input and output a single value
# no need to use bias as BatchNorm2d has affine parameters
if type(norm_layer) == functools.partial:
use_bias = norm_layer.func == nn.InstanceNorm2d
else:
use_bias = norm_layer == nn.InstanceNorm2d
# convolutional layers, increasing in depth
# first layer has *no* batchnorm
model = [nn.Conv2d(in_channels, n_filters, kernel_size=4, stride=2, padding=1),
nn.LeakyReLU(0.2, True)]
mult = 1
prev_mult = 1
for n in range(1, n_layers): # gradually increase the number of filters
prev_mult = mult
mult = min(2 ** n, 8)
model += [nn.Conv2d(n_filters * prev_mult, n_filters * mult, kernel_size=4,
stride=2, padding=1, bias=use_bias),
norm_layer(n_filters * mult),
nn.LeakyReLU(0.2, True)]
prev_mult = mult
mult = min(2 ** n_layers, 8)
model += [nn.Conv2d(n_filters * prev_mult, n_filters * mult, kernel_size=4,
stride=1, padding=1, bias=use_bias),
norm_layer(n_filters * mult),
nn.LeakyReLU(0.2, True)]
# classification layer
model += [nn.Conv2d(n_filters * mult, 1, kernel_size=4, stride=1, padding=1)]
self.model = nn.Sequential(*model)
def forward(self, input):
return self.model(input)
The generators, G_XtoY and G_YtoX (sometimes called F), are made of an encoder, a conv net that is responsible for turning an image into a smaller feature representation, and a decoder, a transpose_conv net that is responsible for turning that representation into an transformed image. These generators, one from XtoY and one from YtoX, have the following architecture:

This network sees a 128x128x3 image, compresses it into a feature representation as it goes through three convolutional layers and reaches a series of residual blocks. It goes through a few (typically 6 or more) of these residual blocks, then it goes through three transpose convolutional layers (sometimes called de-conv layers) which upsample the output of the resnet blocks and create a new image!
Note that most of the convolutional and transpose-convolutional layers have BatchNorm and ReLu functions applied to their outputs with the exception of the final transpose convolutional layer, which has a tanh activation function applied to the output. Also, the residual blocks are made of convolutional and batch normalization layers, which we'll go over in more detail, next.
To define the generators, you're expected to define a ResidualBlock class which will help you connect the encoder and decoder portions of the generators. You might be wondering, what exactly is a Resnet block? It may sound familiar from something like ResNet50 for image classification, pictured below.

ResNet blocks rely on connecting the output of one layer with the input of an earlier layer. The motivation for this structure is as follows: very deep neural networks can be difficult to train. Deeper networks are more likely to have vanishing or exploding gradients and, therefore, have trouble reaching convergence; batch normalization helps with this a bit. However, during training, we often see that deep networks respond with a kind of training degradation. Essentially, the training accuracy stops improving and gets saturated at some point during training. In the worst cases, deep models would see their training accuracy actually worsen over time!
One solution to this problem is to use Resnet blocks that allow us to learn so-called residual functions as they are applied to layer inputs. You can read more about this proposed architecture in the paper, Deep Residual Learning for Image Recognition by Kaiming He et. al, and the below image is from that paper.

Usually, when we create a deep learning model, the model (several layers with activations applied) is responsible for learning a mapping, M, from an input x to an output y.
M(x) = y(Equation 1)
Instead of learning a direct mapping from x to y, we can instead define a residual function
F(x) = M(x) - x
This looks at the difference between a mapping applied to x and the original input, x. F(x) is, typically, two convolutional layers + normalization layer and a ReLu in between. These convolutional layers should have the same number of inputs as outputs. This mapping can then be written as the following; a function of the residual function and the input x. The addition step creates a kind of loop that connects the input x to the output, y:
M(x) = F(x) + x(Equation 2) or
y = F(x) + x(Equation 3)
The idea is that it is easier to optimize this residual function F(x) than it is to optimize the original mapping M(x). Consider an example; what if we want y = x?
From our first, direct mapping equation, Equation 1, we could set M(x) = x but it is easier to solve the residual equation F(x) = 0, which, when plugged in to Equation 3, yields y = x.
ResidualBlock Class¶To define the ResidualBlock class, we'll define residual functions (a series of layers), apply them to an input x and add them to that same input. This is defined just like any other neural network, with an __init__ function and the addition step in the forward function.
In our case, you'll want to define the residual block as:
Then, in the forward function, add the input x to this residual block. Feel free to use the helper conv function from above to create this block.
class ResNetBlock(nn.Module):
"""Defines a ResNet.
"""
def __init__(self, channels, padding_type, norm_layer, use_dropout, use_bias):
"""Constructs a ResNet.
A ResNet is a residual block with a skip connection.
Construct a ResNet with "get_residual_block" function,
and implement the skip connection in "forward" function.
"""
super(ResNetBlock, self).__init__()
self.model = self.get_residual_block(channels, padding_type, norm_layer, use_dropout, use_bias)
def get_residual_block(self, channels, padding_type, norm_layer, use_dropout, use_bias):
"""Construct residual blcok.
Parameters:
channels (int) -- number of channels in conv layer.
padding_type (str) -- name of padding layer: reflect | replicate | zero
norm_layer -- normalization layer
use_dropout (bool) -- if use dropout layers.
use_bias (bool) -- if conv layer uses bias or not
Returns a residual block (with conv layers, normalization layers, and a non-linearity layer).
"""
residual_block = []
padding = 0
if padding_type == 'reflect':
residual_block += [nn.ReflectionPad2d(1)]
elif padding_type == 'replicate':
residual_block += [nn.ReplicationPad2d(1)]
elif padding_type == 'zero':
padding = 1
else:
raise NotImplementedError('padding [%s] is not implemented' % padding_type)
residual_block += [nn.Conv2d(channels, channels, kernel_size=3, padding=padding, bias=use_bias),
norm_layer(channels),
nn.ReLU(True)]
if use_dropout:
residual_block += [nn.Dropout(0.5)]
padding = 0
if padding_type == 'reflect':
residual_block += [nn.ReflectionPad2d(1)]
elif padding_type == 'replicate':
residual_block += [nn.ReplicationPad2d(1)]
elif padding_type == 'zero':
padding = 1
else:
raise NotImplementedError('padding [%s] is not implemented' % padding_type)
residual_block += [nn.Conv2d(channels, channels, kernel_size=3, padding=padding, bias=use_bias),
norm_layer(channels)]
return nn.Sequential(*residual_block)
def forward(self, x):
out = x + self.model(x) # add a skip connection
return out
class UNetBlock(nn.Module):
"""Defines an U-Net and its subnets with skip connection.
"""
def __init__(self, out_channels, n_filters, in_channels=None,
subnet=None, outermost=False, innermost=False,
norm_layer=get_norm_layer('batch'), use_dropout=False):
"""Constructs an U-Net and its subnets with skip connections.
Parameters:
out_channels (int) -- number of channels in output conv layer
n_filters (int) -- number of channels in inner conv layer
in_channels (int) -- number of channels in input images
subnet (UnetBlock) -- previously defined subnets
outermost (bool) -- if this U-Net block is the outermost block
innermost (bool) -- if this U-Net block is the innermost block
norm_layer -- normalization layer
use_dropout (bool) -- if use dropout layers
"""
super(UNetBlock, self).__init__()
self.outermost = outermost
if type(norm_layer) == functools.partial:
use_bias = norm_layer.func == nn.InstanceNorm2d
else:
use_bias = norm_layer == nn.InstanceNorm2d
if in_channels is None:
in_channels = out_channels
down_relu = nn.LeakyReLU(0.2, True)
down_conv = nn.Conv2d(in_channels, n_filters, kernel_size=4,
stride=2, padding=1, bias=use_bias)
down_norm = norm_layer(n_filters)
up_relu = nn.ReLU(True)
up_norm = norm_layer(out_channels)
if outermost:
up_conv = nn.ConvTranspose2d(n_filters * 2, out_channels, kernel_size=4,
stride=2, padding=1)
down = [down_conv]
up = [up_relu, up_conv, nn.Tanh()]
model = down + [subnet] + up
elif innermost:
up_conv = nn.ConvTranspose2d(n_filters, out_channels, kernel_size=4,
stride=2, padding=1, bias=use_bias)
down = [down_relu, down_conv]
up = [up_relu, up_conv, up_norm]
model = down + up
else:
up_conv = nn.ConvTranspose2d(n_filters * 2, out_channels, kernel_size=4,
stride=2, padding=1, bias=use_bias)
down = [down_relu, down_conv, down_norm]
up = [up_relu, up_conv, up_norm]
if use_dropout:
model = down + [subnet] + up + [nn.Dropout(0.5)]
else:
model = down + [subnet] + up
self.model = nn.Sequential(*model)
def forward(self, x):
if self.outermost:
return self.model(x)
else: # add skip connections
return torch.cat([x, self.model(x)], 1)
To define the generators, you're expected to use the above conv function, ResidualBlock class, and the below deconv helper function, which creates a transpose convolutional layer + an optional batchnorm layer.
# helper deconv function
def deconv(in_channels, out_channels, kernel_size,
norm_laye, use_bias,
stride=2, padding=1, output_padding=1):
"""Creates a transpose convolutional layer, with an optional normalization layer.
"""
layers = [nn.ConvTranspose2d(in_channels, out_channels,
kernel_size, stride,
padding, output_padding, bias=use_bias)]
# optional batch norm layer
if norm_layer != None:
layers += [norm_layer(out_channels)]
return nn.Sequential(*layers)
__init__ function with the specified 3 layer encoder convolutional net, a series of residual blocks (the number of which is given by n_blocks), and then a 3 layer decoder transpose convolutional net.forward function to define the forward behavior of the generators. Recall that the last layer has a tanh activation function.Both $G_{XtoY}$ and $G_{YtoX}$ have the same architecture, so we only need to define one class, and later instantiate two generators.
class ResNetGenerator(nn.Module):
"""Defines a ResNet based generator
that consists of residual blocks between a few downsampling/upsampling operations.
"""
def __init__(self, in_channels, out_channels, n_filters=64,
n_blocks=9, norm_layer=get_norm_layer('batch'),
use_dropout=False, padding_type='reflect'):
"""Constructs a ResNet based generator.
Parameters:
in_channels (int) -- number of channels in input images
out_channels (int) -- number of channels in output images
n_filters (int) -- number of channels in the last conv layer
n_blocks (int) -- number of residual blocks
norm_layer -- normalization layer
use_dropout (bool) -- if use dropout layers
padding_type (str) -- name of padding layer in conv layers: reflect | replicate | zero
"""
assert(n_blocks >= 0)
super(ResNetGenerator, self).__init__()
if type(norm_layer) == functools.partial:
use_bias = norm_layer.func == nn.InstanceNorm2d
else:
use_bias = norm_layer == nn.InstanceNorm2d
model = [nn.ReflectionPad2d(3),
nn.Conv2d(in_channels, n_filters, kernel_size=7, padding=0, bias=use_bias),
norm_layer(n_filters),
nn.ReLU(True)]
n_downs = 2
for i in range(n_downs): # add downsampling layers
mult = 2 ** i
model += [nn.Conv2d(n_filters * mult, n_filters * mult * 2, kernel_size=3,
stride=2, padding=1, bias=use_bias),
norm_layer(n_filters * mult * 2),
nn.ReLU(True)]
mult = 2 ** n_downs
for i in range(n_blocks): # add ResNet blocks
model += [ResNetBlock(n_filters * mult, padding_type=padding_type, norm_layer=norm_layer,
use_dropout=use_dropout, use_bias=use_bias)]
for i in range(n_downs): # add upsampling layers
mult = 2 ** (n_downs - i)
model += [nn.ConvTranspose2d(n_filters * mult, int(n_filters*mult / 2), kernel_size=3,
stride=2, padding=1, output_padding=1, bias=use_bias),
norm_layer(int(n_filters*mult / 2)),
nn.ReLU(True)]
model += [nn.ReflectionPad2d(3)]
model += [nn.Conv2d(n_filters, out_channels, kernel_size=7, padding=0)]
model += [nn.Tanh()]
self.model = nn.Sequential(*model)
def forward(self, x):
return self.model(x)
class UNetGenerator(nn.Module):
"""Creates a U-Net based generator
"""
def __init__(self, in_channels, out_channels, n_filters=64,
n_downs=8, norm_layer=get_norm_layer('batch'), use_dropout=False):
"""Constructs a U-Net based generator.
Parameters:
in_channels (int) -- number of channels in input image
out_channels (int) -- number of channels in output image
n_filters (int) -- number of filters in the last conv layer
n_downs (int) -- number of downsamplings in U-Net.
norm_layer -- normalization layer
use_dropout (bool) -- if use dropout layers
Constructs an U-Net from the innermost layer to the outermost layer.
It is a recursive process.
"""
super(UNetGenerator, self).__init__()
# construct a U-Net structure
# add the innermost layer
model = UNetBlock(n_filters * 8, n_filters * 8, in_channels=None,
subnet=None, norm_layer=norm_layer, innermost=True)
for i in range(n_downs - 5): # add inner layers with inner_nc * 8 channels
model = UNetBlock(n_filters * 8, n_filters * 8, in_channels=None,
subnet=model, norm_layer=norm_layer, use_dropout=use_dropout)
# gradually reduce the number of channels from inner_nc * 8 to inner_nc
model = UNetBlock(n_filters * 4, n_filters * 8, in_channels=None,
subnet=model, norm_layer=norm_layer)
model = UNetBlock(n_filters * 2, n_filters * 4, in_channels=None,
subnet=model, norm_layer=norm_layer)
model = UNetBlock(n_filters, n_filters * 2, in_channels=None,
subnet=model, norm_layer=norm_layer)
# add the outermost layer
self.model = UNetBlock(out_channels, n_filters, in_channels=in_channels,
subnet=model, outermost=True, norm_layer=norm_layer)
def forward(self, x):
return self.model(x)
Using the classes you defined earlier, you can define the discriminators and generators necessary to create a complete CycleGAN. The given parameters should work for training.
First, create two discriminators, one for checking if $X$ sample images are real, and one for checking if $Y$ sample images are real. Then the generators. Instantiate two of them, one for transforming a painting into a realistic photo and one for transforming a photo into a painting.
def create_model(generator_type, in_channels=3, out_channels=3, **lookup):
"""Builds the generators and discriminators.
"""
# instantiate generators
if generator_type == 'U-Net':
G_XtoY = UNetGenerator(in_channels, out_channels, **lookup)
G_YtoX = UNetGenerator(in_channels, out_channels, **lookup)
elif generator_type == 'ResNet':
G_XtoY = ResNetGenerator(in_channels, out_channels, **lookup)
G_YtoX = ResNetGenerator(in_channels, out_channels, **lookup)
# instantiate discriminators
D_X = Discriminator(in_channels, **lookup)
D_Y = Discriminator(in_channels, **lookup)
# move models to GPU, if available
if torch.cuda.is_available():
device = torch.device('cuda:0')
G_XtoY.to(device)
G_YtoX.to(device)
D_X.to(device)
D_Y.to(device)
print('Models moved to GPU.')
else:
print('Only CPU available.')
return G_XtoY, G_YtoX, D_X, D_Y
def init_weights(net, init_type, init_gain=0.02):
"""Initialize network weights.
Parameters:
net (network) -- network to be initialized
init_type (str) -- name of initialization method: normal | xavier | kaiming | orthogonal
init_gain (float) -- scaling factor for normal, xavier and orthogonal
Use 'normal' in the original pix2pix and CycleGAN paper.
But xavier and kaiming might swork better for some applications.
Feel free to try yourself.
"""
# define the initialization function
def init_func(m):
classname = m.__class__.__name__
if hasattr(m, 'weight') and (classname.find('Conv') != -1):
if init_type == 'normal':
nn.init.normal_(m.weight.data, 0.0, init_gain)
elif init_type == 'xavier':
nn.init.xavier_normal_(m.weight.data, gain=init_gain)
elif init_type == 'kaiming':
nn.init.kaiming_normal_(m.weight.data, a=0, mode='fan_in')
elif init_type == 'orthogonal':
nn.init.orthogonal_(m.weight.data, gain=init_gain)
else:
raise NotImplementedError('initialization method [%s] is not implemented' % init_type)
if hasattr(m, 'bias') and m.bias is not None:
nn.init.constant_(m.bias.data, 0.0)
# BatchNorm layer's weight is not a matrix; only normal distribution applies.
elif classname.find('BatchNorm2d') != -1:
nn.init.normal_(m.weight.data, 1.0, init_gain)
nn.init.constant_(m.bias.data, 0.0)
print('initialize network with %s' % init_type)
# apply the initialization function <init_func>
net.apply(init_func)
# call the function to get models
G_XtoY, G_YtoX, D_X, D_Y = create_model(generator_type='U-Net')
init_weights(G_XtoY, init_type='orthogonal')
init_weights(G_YtoX, init_type='orthogonal')
init_weights(D_X, init_type='orthogonal')
init_weights(D_Y, init_type='orthogonal')
The function create_model should return the two generator and two discriminator networks. After you've defined these discriminator and generator components, it's good practice to check your work. The easiest way to do this is to print out your model architecture and read through it to make sure the parameters are what you expected. The next cell will print out their architectures.
# helper function for printing the model architecture
def print_models(G_XtoY, G_YtoX, D_X, D_Y):
"""Prints model information for the generators and discriminators.
"""
print(" G_XtoY ")
print("-----------------------------------------------")
print(G_XtoY)
print()
print(" G_YtoX ")
print("-----------------------------------------------")
print(G_YtoX)
print()
print(" D_X ")
print("-----------------------------------------------")
print(D_X)
print()
print(" D_Y ")
print("-----------------------------------------------")
print(D_Y)
print()
# print all of the models
print_models(G_XtoY, G_YtoX, D_X, D_Y)
Computing the discriminator and the generator losses are key to getting a CycleGAN to train.

Image from original paper by Jun-Yan Zhu et. al.
The CycleGAN contains two mapping functions $G: X \rightarrow Y$ and $F: Y \rightarrow X$, and associated adversarial discriminators $D_Y$ and $D_X$. (a) $D_Y$ encourages $G$ to translate $X$ into outputs indistinguishable from domain $Y$, and vice versa for $D_X$ and $F$.
To further regularize the mappings, we introduce two cycle consistency losses that capture the intuition that if we translate from one domain to the other and back again we should arrive at where we started. (b) Forward cycle-consistency loss and (c) backward cycle-consistency loss.
We've seen that regular GANs treat the discriminator as a classifier with the sigmoid cross entropy loss function. However, this loss function may lead to the vanishing gradients problem during the learning process. To overcome such a problem, we'll use a least squares loss function for the discriminator. This structure is also referred to as a least squares GAN or LSGAN, and you can read the original paper on LSGANs, here. The authors show that LSGANs are able to generate higher quality images than regular GANs and that this loss type is a bit more stable during training!
The discriminator losses will be mean squared errors between the output of the discriminator, given an image, and the target value, 0 or 1, depending on whether it should classify that image as fake or real. For example, for a real image, x, we can train $D_X$ by looking at how close it is to recognizing and image x as real using the mean squared error:
out_x = D_X(x)
real_err = torch.mean((out_x-1)**2)
Calculating the generator losses will look somewhat similar to calculating the discriminator loss; there will still be steps in which you generate fake images that look like they belong to the set of $X$ images but are based on real images in set $Y$, and vice versa. You'll compute the "real loss" on those generated images by looking at the output of the discriminator as it's applied to these fake images; this time, your generator aims to make the discriminator classify these fake images as real images.
In addition to the adversarial losses, the generator loss terms will also include the cycle consistency loss. This loss is a measure of how good a reconstructed image is, when compared to an original image.
Say you have a fake, generated image, x_hat, and a real image, y. You can get a reconstructed y_hat by applying G_XtoY(x_hat) = y_hat and then check to see if this reconstruction y_hat and the orginal image y match. For this, we recommend calculating the L1 loss, which is an absolute difference, between reconstructed and real images. You may also choose to multiply this loss by some weight value lambda_weight to convey its importance.

The total generator loss will be the sum of the generator losses and the forward and backward cycle consistency losses.
To help us calculate the discriminator and gnerator losses during training, let's define some helpful loss functions. Here, we'll define three.
real_mse_loss that looks at the output of a discriminator and returns the error based on how close that output is to being classified as real. This should be a mean squared error.fake_mse_loss that looks at the output of a discriminator and returns the error based on how close that output is to being classified as fake. This should be a mean squared error.cycle_consistency_loss that looks at a set of real image and a set of reconstructed/generated images, and returns the mean absolute error between them. This has a lambda_weight parameter that will weight the mean absolute error in a batch.It's recommended that you take a look at the original, CycleGAN paper to get a starting value for lambda_weight.
def real_mse_loss(D_out):
# how close is the produced output from being "real"?
return torch.mean((D_out - 1)**2)
def fake_mse_loss(D_out):
# how close is the produced output from being "fake"?
return torch.mean(D_out**2)
def cycle_consistency_loss(real_img, reconstructed_img, lambda_weight):
# calculate reconstruction loss and return weighted loss
return lambda_weight * torch.mean(torch.abs(reconstructed_img - real_img))
Next, let's define how this model will update its weights. This, like the GANs you may have seen before, uses Adam optimizers for the discriminator and generator. It's again recommended that you take a look at the original, CycleGAN paper to get starting hyperparameter values.
import torch.optim as optim
# hyperparams for Adam optimizers
lr=0.0002
beta1=0.5
beta2=0.999
g_params = list(G_XtoY.parameters()) + list(G_YtoX.parameters()) # Get generator parameters
# create optimizers for the generators and discriminators
g_optimizer = optim.Adam(g_params, lr, [beta1, beta2])
d_x_optimizer = optim.Adam(D_X.parameters(), lr, [beta1, beta2])
d_y_optimizer = optim.Adam(D_Y.parameters(), lr, [beta1, beta2])
When a CycleGAN trains, and sees one batch of real images from set $X$ and $Y$, it trains by performing the following steps:
Training the Discriminators
Training the Generators

A CycleGAN repeats its training process, alternating between training the discriminators and the generators, for a specified number of training iterations. You've been given code that will save some example generated images that the CycleGAN has learned to generate after a certain number of training iterations. Along with looking at the losses, these example generations should give you an idea of how well your network has trained.
Below, you may choose to keep all default parameters; your only task is to calculate the appropriate losses and complete the training cycle.
import sys
helpers_path = '../input/cyclegan'
sys.path.append(helpers_path)
from importlib import util
spec = util.spec_from_file_location('helpers', helpers_path + '/helpers.py')
helpers = util.module_from_spec(spec)
spec.loader.exec_module(helpers)
# import save code
from helpers import save_samples, checkpoint
# train the network
def training_loop(dataloader_X, dataloader_Y, test_dataloader_X, test_dataloader_Y, n_epochs=4000):
print_every=10
# keep track of losses over time
losses = []
test_iter_X = iter(test_dataloader_X)
test_iter_Y = iter(test_dataloader_Y)
# Get some fixed data from domains X and Y for sampling.
# These are images that are held constant throughout training,
# that allow us to inspect the model's performance.
fixed_X = test_iter_X.next()[0]
fixed_Y = test_iter_Y.next()[0]
fixed_X = scale(fixed_X) # make sure to scale to a range -1 to 1
fixed_Y = scale(fixed_Y)
# batches per epoch
iter_X = iter(dataloader_X)
iter_Y = iter(dataloader_Y)
batches_per_epoch = min(len(iter_X), len(iter_Y))
for epoch in range(1, n_epochs+1):
# reset iterators for each epoch
if epoch % batches_per_epoch == 0:
iter_X = iter(dataloader_X)
iter_Y = iter(dataloader_Y)
images_X, _ = iter_X.next()
images_X = scale(images_X) # make sure to scale to a range -1 to 1
images_Y, _ = iter_Y.next()
images_Y = scale(images_Y)
# move images to GPU if available (otherwise stay on CPU)
device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
images_X = images_X.to(device)
images_Y = images_Y.to(device)
# ============================================
# TRAIN THE DISCRIMINATORS
# ============================================
## First: D_X, real and fake loss components ##
d_x_optimizer.zero_grad()
# 1. Compute the discriminator losses on real images
# 2. Generate fake images that look like domain X based on real images in domain Y
# 3. Compute the fake loss for D_X
# 4. Compute the total loss and perform backprop
d_x_loss = real_mse_loss(D_X(images_X)) + fake_mse_loss(D_X(G_YtoX(images_Y)))
d_x_loss.backward()
d_x_optimizer.step()
## Second: D_Y, real and fake loss components ##
d_y_optimizer.zero_grad()
# 1. Compute the discriminator losses on real images
# 2. Generate fake images that look like domain Y based on real images in domain X
# 3. Compute the fake loss for D_Y
# 4. Compute the total loss and perform backprop
d_y_loss = real_mse_loss(D_Y(images_Y)) + fake_mse_loss(D_Y(G_XtoY(images_X)))
d_y_loss.backward()
d_y_optimizer.step()
# =========================================
# TRAIN THE GENERATORS
# =========================================
## First: generate fake X images and reconstructed Y images ##
g_optimizer.zero_grad()
# 1. Generate fake images that look like domain X based on real images in domain Y
# 2. Compute the generator loss based on domain X
# 3. Create a reconstructed Y
# 4. Compute the cycle consistency loss (the reconstruction loss)
fake_X = G_YtoX(images_Y)
g_YtoX_loss = real_mse_loss(D_X(fake_X))
reconst_X_loss = cycle_consistency_loss(images_Y, G_XtoY(fake_X), lambda_weight=10)
## Second: generate fake Y images and reconstructed X images ##
# 1. Generate fake images that look like domain Y based on real images in domain X
# 2. Compute the generator loss based on domain Y
# 3. Create a reconstructed X
# 4. Compute the cycle consistency loss (the reconstruction loss)
fake_Y = G_XtoY(images_X)
g_XtoY_loss = real_mse_loss(D_Y(fake_Y))
reconst_Y_loss = cycle_consistency_loss(images_X, G_YtoX(fake_Y), lambda_weight=10)
# 5. Add up all generator and reconstructed losses and perform backprop
g_total_loss = g_YtoX_loss + reconst_X_loss + g_XtoY_loss + reconst_Y_loss
g_total_loss.backward()
g_optimizer.step()
# Print the log info
if epoch % print_every == 0:
# append real and fake discriminator losses and the generator loss
losses.append((d_x_loss.item(), d_y_loss.item(), g_total_loss.item()))
print('Epoch [{:5d}/{:5d}] | d_X_loss: {:6.4f} | d_Y_loss: {:6.4f} | g_total_loss: {:6.4f}'.format(
epoch, n_epochs, d_x_loss.item(), d_y_loss.item(), g_total_loss.item()))
sample_every=100
# Save the generated samples
if epoch % sample_every == 0:
G_YtoX.eval() # set generators to eval mode for sample generation
G_XtoY.eval()
save_samples(epoch, fixed_Y, fixed_X, G_YtoX, G_XtoY, batch_size=16)
G_YtoX.train()
G_XtoY.train()
# uncomment these lines if you want to save your model
checkpoint_every=1000
# save the model parameters
if epoch % checkpoint_every == 0:
checkpoint(epoch, G_XtoY, G_YtoX, D_X, D_Y)
return losses
%%bash
mkdir -p samples_cyclegan
mkdir -p checkpoints_cyclegan
n_epochs = 4000 # keep this small when testing if a model first works, then increase it to >=1000
losses = training_loop(dataloader_X, dataloader_Y, test_dataloader_X, test_dataloader_Y, n_epochs=n_epochs)
A lot of experimentation goes into finding the best hyperparameters such that the generators and discriminators don't overpower each other. It's often a good starting point to look at existing papers to find what has worked in previous experiments, I'd recommend this DCGAN paper in addition to the original CycleGAN paper to see what worked for them. Then, you can try your own experiments based off of a good foundation.
When you display the generator and discriminator losses you should see that there is always some discriminator loss; recall that we are trying to design a model that can generate good "fake" images. So, the ideal discriminator will not be able to tell the difference between real and fake images and, as such, will always have some loss. You should also see that $D_X$ and $D_Y$ are roughly at the same loss levels; if they are not, this indicates that your training is favoring one type of discriminator over the other and you may need to look at biases in your models or data.
The generator's loss should start significantly higher than the discriminator losses because it is accounting for the loss of both generators and weighted reconstruction errors. You should see this loss decrease a lot at the start of training because initial, generated images are often far-off from being good fakes. After some time it may level off; this is normal since the generator and discriminator are both improving as they train. If you see that the loss is jumping around a lot, over time, you may want to try decreasing your learning rates or changing your cycle consistency loss to be a little more/less weighted.
fig, ax = plt.subplots(figsize=(12,8))
losses = np.array(losses)
plt.plot(losses.T[0], label='Discriminator, X', alpha=0.5)
plt.plot(losses.T[1], label='Discriminator, Y', alpha=0.5)
plt.plot(losses.T[2], label='Generators', alpha=0.5)
plt.title("Training Losses")
plt.legend()
As you trained this model, you may have chosen to sample and save the results of your generated images after a certain number of training iterations. This gives you a way to see whether or not your Generators are creating good fake images. For example, the image below depicts real images in the $Y$ set, and the corresponding generated images during different points in the training process. You can see that the generator starts out creating very noisy, fake images, but begins to converge to better representations as it trains (though, not perfect).

Below, you've been given a helper function for displaying generated samples based on the passed in training iteration.
import matplotlib.image as mpimg
# helper visualization code
def view_samples(iteration, sample_dir='samples_cyclegan'):
# samples are named by iteration
path_XtoY = os.path.join(sample_dir, 'sample-{:06d}-X-Y.png'.format(iteration))
path_YtoX = os.path.join(sample_dir, 'sample-{:06d}-Y-X.png'.format(iteration))
# read in those samples
try:
x2y = mpimg.imread(path_XtoY)
y2x = mpimg.imread(path_YtoX)
except:
print('Invalid number of iterations.')
fig, (ax1, ax2) = plt.subplots(figsize=(18,20), nrows=2, ncols=1, sharey=True, sharex=True)
ax1.imshow(x2y)
ax1.set_title('X to Y')
ax2.imshow(y2x)
ax2.set_title('Y to X')
# view samples at iteration 100
view_samples(100, 'samples_cyclegan')
# view samples at iteration 4000
view_samples(4000, 'samples_cyclegan')
Once you are satified with your model, you are ancouraged to test it on a different dataset to see if it can find different types of mappings!
You can download a variety of datasets used in the Pix2Pix and CycleGAN papers, by following instructions in the associated Github repository. You'll just need to make sure that the data directories are named and organized correctly to load in that data.